home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 March
/
PCWorld_2002-03_cd.bin
/
Software
/
TemaCD
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ Ver Disp 4.xpl
< prev
next >
Wrap
Text File
|
2001-01-21
|
2KB
|
67 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="5"
"UIPATH"="Information\Applications"
"NAME"="Internet Explorer Version Info"
"VERSION"="1.06 "
"LANGUAGE"="VBScript"
"TEXT 1"="Main Version"
"TEXT 2"="Minor Version"
"TEXT 3"="Build Version"
"TEXT 4"="Quick Fix Version"
"TEXT 5"="Outlook Express"
"DESCRIPTION 1"="This plug-in shows information about Internet Explorer/Outlook Express."
"DESCRIPTION 2"="This is useful for showing you which patches you have installed."
"DESCRIPTION 3"="You can't change anything!!!"
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Thanks to our friend Ojatex@aol.com for his help!"
sP="HKLM\Software\Microsoft\Internet Explorer\"
sV1="Version"
sV2="Build"
sV3="QFEVer"
'sV1="Plus! VersionNumber"
sP2="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\"
sV4="MinorVersion"
sP3="HKLM\Software\Microsoft\Outlook Express\Version Info\"
sV5="Current"
Sub Plugin_Initialize
s=RegReadValue(sP & sV1)
Call SetUIElement(1,s)
s=RegReadValue(sP2 & sV4)
if isempty(s) then s="N/A"
Call SetUIElement(2,s)
s=RegReadValue(sP & sV2)
Call SetUIElement(3,s)
s=RegReadValue(sP & sV3)
if isempty(s) then s="N/A"
Call SetUIElement(4,s)
s=RegReadValue(sP3 & sV5)
Call SetUIElement(5,s)
Call Disable 'user can't change anything!
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
End Sub
Sub Plugin_Terminate
End Sub